Test Failed
Branch feature/typescript5 (203f49)
by Lorenzo
03:01
created

Service   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A hello 0 2 1
1
import { Bean } from '@/main';
2
3
@Bean
4
export default class Service {
5
  hello() {
6
    return 'Hello from Service!';
7
  }
8
}
9